home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2005 November / Game.EXE_11_2005_DVD.iso / Flash Games / Robo Farmer / robofarmer.swf / scripts / DefineButton2_745 / BUTTONCONDACTION on(press).as next >
Encoding:
Text File  |  2005-09-23  |  306 b   |  18 lines

  1. on(press){
  2.    if(_root.money <= 19)
  3.    {
  4.       return undefined;
  5.    }
  6.    if(_root.money >= 20)
  7.    {
  8.       _root.money -= 20;
  9.       _root.armorsub -= 50;
  10.       if(_root.armorsub <= 0)
  11.       {
  12.          _root.armorsub = 0;
  13.       }
  14.       _root.sndglass.start();
  15.       return undefined;
  16.    }
  17. }
  18.